﻿ body {
            background-color: #f5f5f5;
            font-family: Arial, sans-serif;
        }
        
        .form-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin: 20px auto;
            max-width: 800px;
        }
        
        .form-header {
            background-color: #d4edda;
            padding: 20px;
            border-radius: 8px 8px 0 0;
            border-bottom: 1px solid #c3e6cb;
        }
        
        .form-header h2 {
            color: #6c757d;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .form-header p {
            color: #495057;
            text-align: justify;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        .form-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
        }
        
        .required {
            color: #dc3545;
        }
        
        .collapse {
		    display: block !important; 
		}
        
        .form-control {
            border: 1px solid #ced4da;
            border-radius: 4px;
            
            font-size: 14px;
        }
        
        .form-control:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }
        
        .char-counter {
            font-size: 12px;
            color: #6c757d;
            text-align: right;
            margin-top: 5px;
        }
        
        .legal-notice {
            background-color: #e8f5e8;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
            border-left: 4px solid #28a745;
        }
        
        .legal-notice h4 {
            color: #155724;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .legal-notice p {
            color: #155724;
            font-size: 13px;
            line-height: 1.5;
            text-align: justify;
            margin-bottom: 10px;
        }
        
        .privacy-link {
            color: #007bff;
            text-decoration: underline;
        }
        
        .privacy-link:hover {
            color: #0056b3;
        }
        
        .btn-submit {
            background-color: #28a745;
            border-color: #28a745;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 6px;
        }
        
        .btn-submit:hover {
            background-color: #218838;
            border-color: #1e7e34;
        }
        
        .submit-container {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #dee2e6;
        }
        
        .validation-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        
        .has-error .form-control {
            border-color: #dc3545;
            height: 34px !important;
        }
        
        .has-success .form-control {
            border-color: #28a745;
            height: 34px !important;
        }
        
        .form-control-input {
            height: 34px !important;
        }

        
        
        @media (max-width: 768px) {
            .form-container {
                margin: 10px;
                border-radius: 0;
            }
            
            .form-header, .form-body {
                padding: 15px;
            }
        }
        
        
        
        
@media (min-width: 1200px) {
    .container {
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .container {
        width: 100% !important;
    }
}
@media (min-width: 768px) {
    .container {
        width: 100% !important;
    }
}
.container {
    padding-right: 0% !important;
    padding-left: 0% !important;
    margin-right: auto;
    margin-left: auto;
}